home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
misc
/
moonbas2
/
random.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-04-07
|
316 b
|
8 lines
//----------------------------------------------------------------------------
// Borland C++ compatible random functions:
//----------------------------------------------------------------------------
#define randomize() srand ( time (NULL) )
#define random(num) (int)(((long)rand()*(num))/(RAND_MAX+1))